Validation mode flag used by most DSP effect options (e.g. ChorusEffectOptions, HardClipOptions, SoftClipOptions, LowPassFilterOptions).
enum StrictMode {
Disabled = 0x00,
Enabled = 0x01
}
StrictMode is a numeric enum exported directly from the package root (import { StrictMode } from "@fluex/fluexgl-dsp"). Every effector that accepts a strictMode option coerces whatever value it receives to either StrictMode.Enabled or StrictMode.Disabled (falling back to StrictMode.Disabled for anything else), and forwards it to the underlying AudioWorklet processor as part of its options object.
Disabled = 0x00 - Default. Relaxed validation on the processor side.Enabled = 0x01 - Stricter validation on the processor side.